1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xmlns=
"http://maven.apache.org/POM/4.0.0"
3          xmlns:xsi=
"http://www.w3.org/2001/XMLSchema-instance"
4          xsi:schemaLocation=
"http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5     <modelVersion>
4.0.0</modelVersion>
6
7     <groupId>com.ktplayer</groupId>
8     <artifactId>ktplayer</artifactId>
9     <version>
0.1</version>
10
11     <dependencies>
12         <dependency>
13             <groupId>com.mpatric</groupId>
14             <artifactId>mp3agic</artifactId>
15             <version>
0.9.1</version>
16         </dependency>
17         <dependency>
18             <groupId>com.jfoenix</groupId>
19             <artifactId>jfoenix</artifactId>
20             <version>
8.0.1</version>
21         </dependency>
22     </dependencies>
23
24     <build>
25         <plugins>
26             <plugin>
27                 <artifactId>maven-assembly-plugin</artifactId>
28                 <configuration>
29                     <archive>
30                         <manifest>
31                             <mainClass>com.ktplayer.Main</mainClass>
32                         </manifest>
33                     </archive>
34                     <descriptorRefs>
35                         <descriptorRef>jar-with-dependencies</descriptorRef>
36                     </descriptorRefs>
37                 </configuration>
38             </plugin>
39             <plugin>
40                 <groupId>org.apache.maven.plugins</groupId>
41                 <artifactId>maven-jar-plugin</artifactId>
42                 <configuration>
43                     <archive>
44                         <manifest>
45                             <mainClass>com.ktplayer.Main</mainClass>
46                         </manifest>
47                     </archive>
48                 </configuration>
49             </plugin>
50             <plugin>
51                 <groupId>org.apache.maven.plugins</groupId>
52                 <artifactId>maven-compiler-plugin</artifactId>
53                 <version>
3.3</version>
54                 <configuration>
55                     <source>
1.8</source>
56                     <target>
1.8</target>
57                 </configuration>
58             </plugin>
59         </plugins>
60     </build>
61
62
63 </project>


Gõ tìm kiếm nhanh...